using System.Threading.Tasks; using Plugins.Countly.Helpers; using Plugins.Countly.Models; namespace Plugins.Countly.Services { public interface IInitializationCountlyService { string ServerUrl { get; } string AppKey { get; } /// /// Initializes countly instance /// /// /// /// void Begin(string serverUrl, string appKey); /// /// Initializes the Countly SDK with default values /// /// /// /// /// /// Task SetDefaults(CountlyConfigModel configModel); /// /// Gets the base url to make requests to the Countly server. /// /// string GetBaseUrl(); } }